Post

Replies

Boosts

Views

Activity

Reply to Add Narration Instead of VoiceOver
I was able to figure this out on my own. Adding the following code to my class that extends UILabel did the trick: override var accessibilityContainerType: UIAccessibilityContainerType {         get { return .semanticGroup }         set { }     }          override var accessibilityLabel: String? {         get { return "" }         set { }     }          override var accessibilityHint: String? {         get { return "" }         set { }     }
Dec ’20
Reply to In cross-screen navigation, VoiceOver's focus is starting on content on iOS13, not the nav bar
There seem to be a lot of VoiceOver changes since iOS 13, and even more in iOS 14. I am not certain why Apple is making some of the decisions they are making, as they seem to make VoiceOver support harder and harder to manage properly. In your case, I would recommend posting a UIAccessibility notification like the one below, where backButton is replaced with a reference to the back button (or whatever element you want VoiceOver to focus on): UIAccessibility.post(notification: .layoutChanged, argument: backButton)
Oct ’20